steam_activate_overlay_store

语法:

steam_activate_overlay_store(app_id);


参数 描述
app_id The unique App ID for your game.


返回: N/A(无返回值)


描述

With this function you can open the Steam overlay on the store page for a game so that users can buy or download DLC (for example). You need to supply the unique App ID for the game or DLC which you would get from the Steam dashboard when you set it up.


例如:

if keyboard_check_pressed(vk_f1)
   {
   steam_activate_overlay_store(global.DLC_id);
   }

The above code polls the keyboard for the F1 key and if it is then Steam overlay will be opened on the page for the game content using the app ID stored in the global variable.